home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / science / sm32a.zip / LIBRARY / LISTPLOT.LI < prev    next >
Text File  |  1994-12-22  |  267b  |  6 lines

  1. #  listplot() plots a list of [y1,y2,...] w.r.t. x=1,2,... on xy-plane
  2. #  e.g. listplot([1,2,4,6,8])
  3.  
  4. listplot(y_) := dataplot([list(xx,xx,1,length(y),1)], y)
  5. listplot(y_,xmin_,xmax_,ymin_,ymax_) := dataplot([list(xx,xx,1,length(y),1)], y, xmin,xmax,ymin,ymax)
  6.